7ce6c7559e346fb03d83e2a704d0e3e01d5313a5,rt/core/src/main/java/org/apache/cxf/wsdl11/WSDLManagerImpl.java,WSDLManagerImpl,loadDefinition,#String#,212
Before Change
Document doc;
try {
doc = StaxUtils.read(StaxUtils.createXMLStreamReader(src), true);
doc.setDocumentURI(src.getSystemId());
} catch (Exception e) {
throw new WSDLException(WSDLException.PARSER_ERROR, e.getMessage(), e);
}
After Change
Document doc;
try {
doc = StaxUtils.read(StaxUtils.createXMLStreamReader(src), true);
doc.setDocumentURI(new String(src.getSystemId()));
} catch (Exception e) {
throw new WSDLException(WSDLException.PARSER_ERROR, e.getMessage(), e);
}